projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8db9dc6
)
(Fdocumentation): Specify UNIBYTE = 0
author
Richard M. Stallman
<rms@gnu.org>
Sun, 2 Aug 1998 02:44:04 +0000
(
02:44
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 2 Aug 1998 02:44:04 +0000
(
02:44
+0000)
when calling get_doc_string for a compiled function.
src/doc.c
patch
|
blob
|
history
diff --git
a/src/doc.c
b/src/doc.c
index bca93b60eab9fdea9c3aaf39270f5dcd8f551ce6..2f6b92216e2aaec204223a6b7cb285cb93438ac2 100644
(file)
--- a/
src/doc.c
+++ b/
src/doc.c
@@
-320,7
+320,7
@@
string is passed through `substitute-command-keys'.")
if (STRINGP (tem))
doc = tem;
else if (NATNUMP (tem) || CONSP (tem))
- doc = get_doc_string (tem,
1
, 0);
+ doc = get_doc_string (tem,
0
, 0);
else
return Qnil;
}
@@
-348,7
+348,7
@@
subcommands.)");
in the function body, so reject them if they are last. */
else if ((NATNUMP (tem) || CONSP (tem))
&& ! NILP (XCONS (tem1)->cdr))
- doc = get_doc_string (tem,
1
, 0);
+ doc = get_doc_string (tem,
0
, 0);
else
return Qnil;
}